home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / strategy / xpuzzles.3 / xpuzzles / xpuzzles-5.3.1 / xmball / Mball.h < prev    next >
C/C++ Source or Header  |  1996-02-05  |  2KB  |  89 lines

  1. /*
  2. # X-BASED MASTERBALL(tm)
  3. #
  4. #  Mball.h
  5. #
  6. ###
  7. #
  8. #  Copyright (c) 1994 - 96    David Albert Bagley, bagleyd@hertz.njit.edu
  9. #
  10. #                   All Rights Reserved
  11. #
  12. #  Permission to use, copy, modify, and distribute this software and
  13. #  its documentation for any purpose and without fee is hereby granted,
  14. #  provided that the above copyright notice appear in all copies and
  15. #  that both that copyright notice and this permission notice appear in
  16. #  supporting documentation, and that the name of the author not be
  17. #  used in advertising or publicity pertaining to distribution of the
  18. #  software without specific, written prior permission.
  19. #
  20. #  This program is distributed in the hope that it will be "playable",
  21. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  23. #
  24. */
  25.  
  26. /* Public header file for Mball */
  27.  
  28. #ifndef _XtMball_h
  29. #define _XtMball_h
  30.  
  31. /***********************************************************************
  32.  *
  33.  * Mball Widget
  34.  *
  35.  ***********************************************************************/
  36.  
  37. #define XtNselectCallback "selectCallback"
  38. #define XtNmono "mono"
  39. #define XtNwedges "wedges"
  40. #define XtNrings "rings"
  41. #define XtNorient "orient"
  42. #define XtNpractice "practice"
  43. #define XtNstart "start"
  44. #define XtNpieceBorder "pieceBorder"
  45. #define XtNwedgeColor0 "wedgeColor0"
  46. #define XtNwedgeColor1 "wedgeColor1"
  47. #define XtNwedgeColor2 "wedgeColor2"
  48. #define XtNwedgeColor3 "wedgeColor3"
  49. #define XtNwedgeColor4 "wedgeColor4"
  50. #define XtNwedgeColor5 "wedgeColor5"
  51. #define XtNwedgeColor6 "wedgeColor6"
  52. #define XtNwedgeColor7 "wedgeColor7"
  53. #define XtCMono "Mono"
  54. #define XtCWedges "Wedges"
  55. #define XtCRings "Rings"
  56. #define XtCOrient "Orient"
  57. #define XtCPractice "Practice"
  58. #define MBALL_RESTORE (-4)
  59. #define MBALL_RESET (-3)
  60. #define MBALL_AMBIGUOUS (-2)
  61. #define MBALL_ILLEGAL (-1)
  62. #define MBALL_MOVED 0
  63. #define MBALL_CONTROL 1
  64. #define MBALL_SOLVED 2
  65. #define MBALL_PRACTICE 3
  66. #define MBALL_RANDOMIZE 4
  67. #define MBALL_DEC 5
  68. #define MBALL_ORIENT 6
  69. #define MBALL_INC 7
  70. #define MBALL_WEDGE2 8
  71. #define MBALL_WEDGE4 9
  72. #define MBALL_WEDGE6 10
  73. #define MBALL_WEDGE8 11
  74. #define MBALL_COMPUTED 12
  75. #define MBALL_UNDO 13
  76.  
  77. typedef struct _MballClassRec *MballWidgetClass;
  78. typedef struct _MballRec *MballWidget;
  79.  
  80. extern WidgetClass mballWidgetClass;
  81.  
  82. typedef struct {
  83.   XEvent *event;
  84.   int reason;
  85. } mballCallbackStruct;
  86.  
  87. #endif _XtMball_h
  88. /* DON'T ADD STUFF AFTER THIS #endif */
  89.